home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / mint / lib / mntlib44.zoo / mntlib / vprintf.c < prev    next >
C/C++ Source or Header  |  1993-10-12  |  160b  |  11 lines

  1. #include <stdio.h>
  2. #include <stdarg.h>
  3. #include "lib.h"
  4. int
  5. vprintf(fmt, args)
  6.     const char *fmt;
  7.     va_list args;
  8. {
  9.     return(_doprnt(fputc, stdout, fmt, args));
  10. }
  11.